home *** CD-ROM | disk | FTP | other *** search
/ Exame Informatica 139 / Exame Informatica 139.iso / Revista / Flash / Uniform Server / diskw / home / admin / www / index.php < prev    next >
Encoding:
PHP Script  |  2005-04-04  |  2.3 KB  |  56 lines

  1. <?
  2. /*
  3. ####################################################
  4. # Name: The Uniform Server Admin Panel 2.0
  5. # Developed By: The Uniform Server Development Team
  6. # Modified Last By: Olajide Olaolorun (empirex) 
  7. # Web: http://www.uniformserver.com
  8. ####################################################
  9. */
  10.  
  11. // Includes
  12. include "includes/config.inc.php";
  13. include "$apanel_path/includes/lang/".file_get_contents("includes/.lang").".php"; 
  14.  
  15. if(file_get_contents("$apanel_path/includes/.lang") == "")
  16. {
  17.     header("Location: lang.php?en");    
  18.     exit();
  19. }
  20. ?>
  21.  
  22. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
  23. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  24. <head>
  25. <title><?=$US['title']?> <? include('includes/.version'); ?></title>
  26. <meta name="author" content="Olajide Olaolorun" />
  27. <meta http-equiv="page-enter" content="blendtrans(duration=0.1)" />
  28. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  29. <script type="text/javascript" src="<? echo $apanel; ?>/js/main.js"></script>
  30. <link href="<? echo $apanel; ?>/css/main.css" rel="stylesheet" type="text/css" />
  31. <link rel="icon" href="<? echo $apanel; ?>/favicon.ico" />
  32.       <link title="Homepage" href="./index.php" rel="top" />
  33.       <link title="Up" href="./index.php" rel="up" />
  34.        <link title="First page" href="./index.php" rel="first" />
  35.       <link title="Previous page" href="./index.php" rel="previous" />
  36.       <link title="Next page" href="./index.php" rel="next" />
  37.       <link title="Last page" href="./index.php" rel="last" />
  38.       <link title="Table of contents" href="./index.php" rel="toc" />
  39.       <link title="Site map" href="./index.php" rel="index" />
  40. </head>
  41.  
  42. <frameset rows="97,*" marginwidth="0" marginheight="0" frameborder="0" border="0" borderwidth="0">
  43.     <frame src="header.php" name="header" scrolling="no" noresize="noresize" id="header" />
  44. <frameset cols="220,*" marginwidth="0" marginheight="0" frameborder="0" border="0" borderwidth="0">
  45.     <frame src="navigation.php" name="navigation" scrolling="no" noresize="noresize" id="navigation" />
  46.     <frame src="start.php" name="content" scrolling="no" noresize="noresize" id="content" />
  47. </frameset>
  48. </frameset>
  49.  
  50. <noframes> 
  51. <body bgcolor="#4F4F97">
  52. <h1>Frame Support Needed</h1>
  53. </body>
  54. </noframes>
  55. </html>
  56.